home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-01-29 | 905 b | 38 lines | [TEXT/MPS ] |
- ;
- ;Created Tuesday, May 10 1989 at 6:00 AM
- ; CRMSerialDevices.a
- ; Assembler Interface to the Communications Resource Manager Serial Device Utilities
- ;
- ; Copyright Apple Computer, Inc. 1988-1991
- ; All rights reserved
- ;
- IF (&TYPE('__INCLUDINGCRMSERIALDEVICES__') = 'UNDEFINED') THEN
- __INCLUDINGCRMSERIALDEVICES__ SET 1
-
- ; crmDeviceType
- crmSerialDevice EQU 1
-
- curCRMSerRecVers EQU 1
-
- ; We put the old ICN# data at the top for backwards compatibility
- CRMIconRecord Record 0
- oldIcon ds.l 32 ; ICN# data & mask
- oldMask ds.l 32 ;
- theSuite ds.l 1 ; handle to an iconSuite
- reserved ds.l 1 ;
- EndR
-
-
- CRMSerialRecord Record 0
- version ds.w 1
- inputDriverName ds.l 1
- outputDriverName ds.l 1
- name ds.l 1
- deviceIcon ds.l 1 ; was: a handle to an 'ICN#' resource
- ; now: a CRMIconHandle
- ratedSpeed ds.l 1
- maxSpeed ds.l 1
- reserved ds.l 1
- EndR
-
- ENDIF ; already included